home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 32 / fortune.zip / FTHELP.HLP (.txt) < prev    next >
Help Librarian Help File  |  1989-10-28  |  5KB  |  52 lines

  1. C-Worthy (R) Help Librarian Data File Version 1.0
  2. COPYRIGHT (C) 1985 - 1989.  All Rights Reserved.
  3. Custom Design Systems, Inc.  Orem, Utah  USA.
  4.              This is a typical help screen.
  5.  Don't forget to press ESCAPE to remove a help screen.
  6.   This allows you to create, edit, delete, and plot functions.
  7. This is where you can select new values for the parameters a, b, and c.
  8.   This will allow previously created projects to be loaded in from disk.  Project filenames have the extension PRO.
  9. The number (epsilon) you put in here is used by the integration technique (either Romberg Integration or Simpson's method), to determine when to stop subdividing the interval of integration. Epsilon represents the fractional accuracy, i.e. if the latest numerical approximation for the integral is within epsilon*old value of the old value, then the routine stops, and prints the latest numerical approximation. The minimum value for epsilon is .00001. The default value is .01. Thus, with the default value, if the actual integral was 100, the numerical routine would stop within .01*100 = 1 of 100. The smaller the value for epsilon, the slower the computation, but the greater the inaccuracy.
  10. This is where you select the domain (x-values) and range (y-values) to be plotted.
  11.   Plots all the created functions (up to 2) using your domain and range.  When the graph appears the following keys are active.
  12. The "a"/"A" key decreases/increases the value of "a" by "ai".
  13. The "b"/"B" key decreases/increases the value of "b" by "bi".
  14. The "c"/"C" key decreases/increases the value of "c" by "ci".
  15. The "END"/"HOME" key decreases/increases "ai" by a factor of 10.
  16. The "DN ARROW"/"UP ARROW" key decreases/increases "bi" by a factor of 10.
  17. The "PgDn"/"PgUp" key decreases/increases "ci" by a factor of 10.
  18. The "i" key performs numerical Romberg Integration of the functions.
  19. The "I" key performs numerical integration by Simpson's method.
  20. The "r" key clears the screen and redraws the latest graph.
  21. The "P" key prints the screen to the selected printer.
  22. The RETURN key draws the function with the new values of "a", "b", "c".
  23. The ESCAPE key returns you to the main menu.
  24.   Use this to create functions of the type y=f(x), which may also include parameters a, b, c. You can create up to two functions.
  25.   If you press the INSERT key, a list of functions is displayed.  You can use and edit these, or create your own function from scratch.  You will be expected to supply initial values for a, b, and c, as well as the range and domain.
  26.   There are two points to remember.  Exponentiation is represented by the "^" key, so that 10^2 = 100.  Also  x^3/2 = (x^3)/2 NOT x^(3/2).
  27.   If you want to create a function like 
  28.                sin(x)/x  if x 
  29.       f(x)  =
  30.                   1      if x = 0
  31. then use the following construction
  32.                  ifne(x,0,1){sin(x)/x}
  33. which can be read "if x is not equal to 0, use sin(x)/x else use 1".
  34.   This allows you to delete functions already created.
  35.   To delete a function, place the high lighted bar over it, and press RETURN or ENTER.
  36.   If you press ESCAPE, no functions will be deleted.
  37.   Use this to edit an existing function. Select the function to be edited by moving the high lighted bar over the function and pressing RETURN.
  38.   Allows you to load previously saved functions from disk.
  39.   Allows you to save created functions to disk.
  40.   Allows you to change disk drives.
  41.   Allows you to change directories on the current drive.
  42.   Gives various disk information, viz. the current drive, the current directory, and the total and remaining free space on the current drive.
  43.   Lists all the files in the current directory.
  44.   This allows you to identify the graphics printer hooked up to your system.  The choice is simple - either EPSON compatible or LASERJET.
  45.   These are the instructions you should have read when you first ran the program.
  46.   The wonderful band of people who don't get enough recognition.
  47.          Kwa Heri.
  48.  (Swahili for "Good Bye"!)
  49. This is where functions are saved and loaded, and other disk oriented chores are performed.
  50.   Miscellaneous operations which don't belong anywhere else.
  51.   When the program plots a graph, it generally starts at the left hand side of the screen, plots a value, moves over an "increment" number of pixels, plots another value, and joins them with a straight line.  The smaller the increment, the more accurate the graph, but the longer the time taken to draw it.  This option allows you to change the increment from the default value of 5 to a number between 1 and 10.
  52.